chore(registry): publish marketplace registry update#269
Conversation
There was a problem hiding this comment.
🚩 Pre-existing: supertonic plugin also missing from docs index
The docs/src/content/docs/reference/plugins/index.md lists 10 plugins but the registry contains 12 (with aac-encoder). The supertonic plugin is also in the registry but has no docs page and is not listed in the index. This is a pre-existing omission not introduced by this PR, but worth noting as part of the same pattern of docs falling behind the registry.
Was this helpful? React with 👍 or 👎 to provide feedback.
Debug
| { | ||
| "id": "aac-encoder", | ||
| "name": "AAC Encoder", | ||
| "description": "AAC-LC audio encoder using FDK AAC (Fraunhofer). Accepts 48 kHz mono or stereo f32 PCM audio, outputs AAC-LC encoded stereo frames. Mono input is automatically upmixed. Requires libfdk-aac.so.2 at runtime.", | ||
| "latest": "0.1.0", | ||
| "versions": [ | ||
| { | ||
| "version": "0.1.0", | ||
| "manifest_url": "https://streamkit.dev/registry/plugins/aac-encoder/0.1.0/manifest.json", | ||
| "signature_url": "https://streamkit.dev/registry/plugins/aac-encoder/0.1.0/manifest.minisig", | ||
| "published_at": "2026-04-07" | ||
| } | ||
| ] | ||
| }, |
There was a problem hiding this comment.
🔴 Missing required docs page and index.md listing for aac-encoder plugin
The AGENTS.md checklist under "Adding an official plugin" requires: "Docs: add/update the plugin page under docs/src/content/docs/reference/plugins/ and list it in docs/src/content/docs/reference/plugins/index.md if applicable." This PR publishes the aac-encoder to the registry but does not include a docs/src/content/docs/reference/plugins/plugin-native-aac-encoder.md page (every other plugin in the registry except supertonic has one), nor does it add aac-encoder to the plugin listing at docs/src/content/docs/reference/plugins/index.md:17-28 (which still says "Official plugins (10)" and omits the new plugin).
Prompt for agents
The AGENTS.md checklist requires that when making a plugin official and downloadable from the registry, a docs page must be added and the index updated. Two things need to happen:
1. Create a new file docs/src/content/docs/reference/plugins/plugin-native-aac-encoder.md following the pattern of existing plugin docs pages (e.g. plugin-native-whisper.md, plugin-native-vad.md). It should document the AAC Encoder plugin: its purpose (AAC-LC encoding via FDK AAC), accepted input (48 kHz mono/stereo f32 PCM), output (AAC-LC stereo frames), runtime dependency (libfdk-aac.so.2), and configuration parameters.
2. Update docs/src/content/docs/reference/plugins/index.md: change the count from 10 to 11 (or remove the hardcoded count) and add an entry for aac-encoder in the appropriate alphabetical position (it would be first in the list): - [`plugin::native::aac-encoder`](./plugin-native-aac-encoder/) (original kind: `aac_encoder`)
Was this helpful? React with 👍 or 👎 to provide feedback.
Automated registry metadata update from run
24098819333.